/* 模态框 */
.modal {
  z-index: 10001;
}
.modal-dialog {
  position: relative;
  top: 50%;
  left: 50%;
  margin: -287px 0 0 -250px;
}
.modal-content {
  position: relative;
  width: 500px;
  height: 574px;
  margin: 0;
  border: none;
  border-radius: 0;
  background: url("/assets/images/app_bg.png") no-repeat center center;
  background-size: 500px 574px;
}

.modal-content .m_logo {
  width: 100%;
  height: 147px;
  padding: 20px 0;
  text-align: center;
}
.modal-content .m_code {
  margin: 0 auto;
  width: 180px;
  height: 180px;
  border: 7px solid #d8d8d8;
}
.modal-content .m_code img {
  width: 100%;
  height: auto;
}

.modal-content .m_text {
  margin: 26px 0 22px;
  font-size: 24px;
  color: #333;
  text-align: center;
}
.modal-content .m_label {
  height: 20px;
  font-size: 20px;
  color: #888;
  text-align: center;
  line-height: 20px;
}
.modal-content .m_label span {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 1px;
  background-color: #979797;
  vertical-align: middle;
}
.modal-content .m_label i {
  position: absolute;
  top: -3px;
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 1px solid #979797;
  border-radius: 50%;
}
.modal-content .m_label .i_left {
  left: -6px;
}
.modal-content .m_label .i_right {
  right: -6px;
}
.modal-content .m_btn {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 75px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  font-weight: 800;
  color: #000;
  text-align: center;
  line-height: 75px;
  cursor: pointer;
}
